home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_68 / readme.txt < prev    next >
Text File  |  1995-01-01  |  3KB  |  99 lines

  1.            SOUND BLASTER  SOFTWARE DEVELOPER'S DISK
  2.            ========================================
  3.  This disk consists of routines and library functions for the
  4.  Sound Blaster Card. Software developers are welcome to incoporate
  5.  these routines into their programs. Creative Labs, Inc. will not
  6.  charge any licencing fees for the usage of these routines as long
  7.  as they are used for programs that supports  the Sound Blaster or
  8.  the Game Blaster.
  9.  
  10.  Software developers may create voice files using the VOXKIT disk.
  11.  Compression and silence packing of the voice files are provided
  12.  in the VOXKIT.
  13.  
  14.  You may use the the JOINTVOC.EXE program to joint voice files
  15.  together.
  16.  
  17.  If you wish to import voice files from other system, you may use
  18.  the VOC-HDR.EXE program in the VOXKIT disk to add a header to it.
  19.  After this the file can be loaded by VOXKIT for further use.
  20.  
  21.  
  22.  
  23.  CT-VOICE DRIVER
  24.  ---------------
  25.  The CT-VOICE.DRV is a program loadable voice driver that allows
  26.  your program to  play digitized voice recorded from the VOXKIT.
  27.  It handles the  memory page-break interrupt and other low level
  28.  tasks for you.
  29.  
  30.  TEST-CTV.EXE is a sample program which calls the CT-VOICE.DRV to
  31.  input and output sound.
  32.  
  33.  (See CREATIVE VOICE DRIVER Literature for details)
  34.  
  35.  
  36.  CHK-VF.EXE
  37.  ----------
  38.  This program allows you to check the structure of a voice file.
  39.  It tells you the size, number of blocks, sampling rate and packing
  40.  schemes used by the voice file.
  41.  
  42.    eg.
  43.                   >CHK-VF  marker.voc
  44.  
  45.  (See "Creative Voice File Format" literature for detail of structure)
  46.  
  47.  
  48.  
  49.                          SBC-LIB
  50.                          =======
  51.       (Sound Blaster Card Library Functions for Microsoft C)
  52.  
  53.  This is a library of Sound Blaster functions for your Microsoft C
  54.  programs.
  55.  
  56.  At this moment, only the function are available :
  57.  
  58.              Card detection and Interrupt jumper detection
  59.  
  60.  ( See SBC-LIB.DOC in the \LIB\ sub-dir for details.)
  61.  
  62.  
  63.                         DETECT (function)
  64.                         ================
  65.       (Sound Card Detection Functions for Microsoft C)
  66.  
  67.  This is a sound card detection functions for your Microsoft C programs.
  68.  It is similar to the first function in  SBC-LIB, but being smaller in
  69.  size, it can be used by those who just need to detect the presence of
  70.  either C/MS Card (Game Blaster) or Killer Card (Sound Blaster)
  71.  
  72.  The only function available is Card detection.
  73.  
  74.  ( See DETECT.DOC in the \LIB\ sub-dir for details.)
  75.  
  76.  
  77.  
  78.                          CTV-MOD
  79.                          =======
  80.  
  81.  CTV-MOD.OBJ is an object file which is linkable to your Microsft C
  82.  programs.
  83.  
  84.  Unlike CT-VOICE.DRV, it is a routine that accepts pure voice data,
  85.  without any header nor compression scheme.
  86.  
  87.  The following functions are included :
  88.  
  89.        1) ctv_detect    :   Card detection
  90.        2) ctv_speaker   :   On/Off DAC output to speaker
  91.        3) ctv_output    :   Output 8-bit data by DMA to DAC
  92.        4) ctv_pause     :   Pause the DMA output
  93.        5) ctv_continue  :   Continue the paused DMA output
  94.        6) ctv_halt      :   Halt the DMA output
  95.        7) ctv_uninstall :   Uninstall, speaker output off
  96.  
  97.  
  98.                ========== ************** ========
  99.